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

Block or report emran92

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
emran92/README.md



I'm Emran Imam 👋

I work as a Mobile 📱 and Web 🌐 developer!

Facebook   Facebook    Facebook    Facebook    

A Computer Science Graduate and Programmer

{
   "🧑‍💻working_on":[
      "JobsNavi"
   ],
   "📚learning":[
      "Dart",
      "Flutter",
      "NodeJS",
      "VueJS"
   ],
   "💬ask_me":[
      "Flutter",
      "Dart"
   ],
   "🎯fun_fact":[
      "🎮",
      "☕"
   ],
   "💻technologies":{
      "frontEnd":[
         "HTML5",
         "CSS",
         "JS",
         "Flutter"
      ],
      "backEnd":[
         "PHP",
         "Laravel",
         "Dart"
      ],
      "databases":[
         "SQL",
         "Firebase",
         "SQLite"
      ]
   }
}

profile.dart

Click to expand!
class Profile {
List<String> workingOn;
List<String> learning;
List<String> askMe;
List<String> funFact;
Technologies technologies;

Profile(
    {this.workingOn,
    this.learning,
    this.askMe,
    this.funFact,
    this.technologies});

Profile.fromJson(Map<String, dynamic> json) {
  workingOn = json['🧑‍💻working_on'].cast<String>();
  learning = json['📚learning'].cast<String>();
  askMe = json['💬ask_me'].cast<String>();
  funFact = json['🎯fun_fact'].cast<String>();
  technologies = json['💻technologies'] != null
      ? new Technologies.fromJson(json['💻technologies'])
      : null;
}

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['🧑‍💻working_on'] = this.workingOn;
  data['📚learning'] = this.learning;
  data['💬ask_me'] = this.askMe;
  data['🎯fun_fact'] = this.funFact;
  if (this.technologies != null) {
    data['💻technologies'] = this.technologies.toJson();
  }
  return data;
}
}

class Technologies {
List<String> frontEnd;
List<String> backEnd;
List<String> databases;

Technologies({this.frontEnd, this.backEnd, this.databases});

Technologies.fromJson(Map<String, dynamic> json) {
  frontEnd = json['frontEnd'].cast<String>();
  backEnd = json['backEnd'].cast<String>();
  databases = json['databases'].cast<String>();
}

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['frontEnd'] = this.frontEnd;
  data['backEnd'] = this.backEnd;
  data['databases'] = this.databases;
  return data;
}
}

Github Stats By Anurag

Made with 💙  using GitHub Markdown  ⬇️

Popular repositories Loading

  1. flutter-web-portfolio flutter-web-portfolio Public

    Dart 5 5

  2. Book_store Book_store Public

    PHP 1

  3. personal_notes personal_notes Public

    Dart 1 1

  4. hashtagme_openai hashtagme_openai Public

    Generate hashtags for your text. Powered by OpenAI and Flutter

    C++ 1

  5. Space-Impact3D Space-Impact3D Public

    C#

  6. visiting_card visiting_card Public

    Dart