InstagramCredentials.fromJson constructor

InstagramCredentials.fromJson(
  1. Map json_
)

Implementation

InstagramCredentials.fromJson(core.Map json_)
  : this(
      authCode: json_['authCode'] as core.String?,
      conversationProfileId: json_['conversationProfileId'] as core.String?,
    );