FileShortcutDetails.fromJson constructor

FileShortcutDetails.fromJson(
  1. Map json_
)

Implementation

FileShortcutDetails.fromJson(core.Map json_)
  : this(
      targetId: json_['targetId'] as core.String?,
      targetMimeType: json_['targetMimeType'] as core.String?,
      targetResourceKey: json_['targetResourceKey'] as core.String?,
    );