Skip to content
View maulanadiooo's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report maulanadiooo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
maulanadiooo/README.md
class Profile {
  String name;
  String age;
  String occupation;
  String location;
  Map<dynamic, String> contacts;

  Profile({
    required this.name,
    required this.age,
    required this.occupation,
    required this.location,
    required this.contacts,
  });

  static Profile init() {
    Profile myProfile = Profile(
      name: 'Dio Maulana',
      age: 'Unknown',
      occupation: 'Mobile Developer',
      location: 'Localhost, Indonesia',
      contacts: {
        "email": "diomaulana@jasadigital.co.id",
        "telegram": "maulanadioo"
      },
    );
    return myProfile;
  }
}

void main() {
  Profile.init();
}

Pinned Loading

  1. narawa narawa Public

    Nara is baileys base whatsapp unofficial API using Elysia JS(BUN)

    TypeScript 1 1