toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final arn = this.arn;
  final localMountPath = this.localMountPath;
  return {
    'Arn': arn,
    'LocalMountPath': localMountPath,
  };
}